home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / graphics / gnuplot / version.c < prev   
C/C++ Source or Header  |  1993-09-15  |  2KB  |  68 lines

  1. /* GNUPLOT - version.c */
  2. /*
  3.  * Copyright (C) 1986 - 1993   Thomas Williams, Colin Kelley
  4.  *
  5.  * Permission to use, copy, and distribute this software and its
  6.  * documentation for any purpose with or without fee is hereby granted, 
  7.  * provided that the above copyright notice appear in all copies and 
  8.  * that both that copyright notice and this permission notice appear 
  9.  * in supporting documentation.
  10.  *
  11.  * Permission to modify the software is granted, but not the right to
  12.  * distribute the modified code.  Modifications are to be distributed 
  13.  * as patches to released version.
  14.  *  
  15.  * This software is provided "as is" without express or implied warranty.
  16.  * 
  17.  *
  18.  * AUTHORS
  19.  * 
  20.  *   Original Software:
  21.  *     Thomas Williams,  Colin Kelley.
  22.  * 
  23.  *   Gnuplot 2.0 additions:
  24.  *       Russell Lang, Dave Kotz, John Campbell.
  25.  *
  26.  *   Gnuplot 3.0 additions:
  27.  *       Gershon Elber and many others.
  28.  * 
  29.  *   Gnuplot 3.4 additions:
  30.  *       Alex Woo and many others.
  31.  * 
  32.  * There is a mailing list for gnuplot users. Note, however, that the
  33.  * newsgroup 
  34.  *    comp.graphics.gnuplot 
  35.  * is identical to the mailing list (they
  36.  * both carry the same set of messages). We prefer that you read the
  37.  * messages through that newsgroup, to subscribing to the mailing list.
  38.  * (If you can read that newsgroup, and are already on the mailing list,
  39.  * please send a message info-gnuplot-request@dartmouth.edu, asking to be
  40.  * removed from the mailing list.)
  41.  *
  42.  * The address for mailing to list members is
  43.  *       info-gnuplot@dartmouth.edu
  44.  * and for mailing administrative requests is 
  45.  *       info-gnuplot-request@dartmouth.edu
  46.  * The mailing list for bug reports is 
  47.  *       bug-gnuplot@dartmouth.edu
  48.  * The list of those interested in beta-test versions is
  49.  *       info-gnuplot-beta@dartmouth.edu
  50. static char *RCSid = "$Id: version.c%v 3.50.1.17 1993/08/27 05:21:33 woo Exp woo $";
  51.  */
  52.  
  53. char version[] = "3.5 ";
  54. char patchlevel[] = "3.50.1.17, 27 Aug 93";
  55. char date[] = "Fri Aug 27 05:21:33 GMT 1993 "; 
  56. char copyright[] = "Copyright(C) 1986 - 1993";
  57.  
  58.  
  59. /* override in Makefile */
  60. #ifndef CONTACT
  61. # define CONTACT "bug-gnuplot@dartmouth.edu"
  62. #endif
  63. #ifndef HELPMAIL
  64. # define HELPMAIL "info-gnuplot@dartmouth.edu"
  65. #endif
  66. char bug_email[] = CONTACT;
  67. char help_email[] = HELPMAIL;
  68.